home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2007 April
/
CHIP CD (4 - 2007).iso
/
beeld
/
3d
/
ArtOfIllusion24-Mac.dmg
/
Art of Illusion
/
ArtOfIllusion.jar
/
bsh
/
commands
/
object.bsh
< prev
next >
Wrap
Text File
|
2005-05-23
|
283b
|
20 lines
/**
Return an "empty" BeanShell object context which can be used to hold
data items. e.g.
<p>
<pre>
myStuff = object();
myStuff.foo = 42;
myStuff.bar = "blah";
</pre>
@method This object()
*/
bsh.help.object = "usage: object()";
object() {
return this;
}